From f80c4adb21cb11c56be6b7b8a0f7ee311c267c35 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sun, 20 Jul 2025 00:51:09 +0100 Subject: [PATCH] mesa: unconditionally depend on libatomic Trying to express the dependency on libatomic conditionally didn't work well and the effort also simply isn't worth it: given the size of mesa itself, libatomic is negligable. Signed-off-by: Daniel Golle --- libs/mesa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mesa/Makefile b/libs/mesa/Makefile index a3f3c9d..635f3d9 100644 --- a/libs/mesa/Makefile +++ b/libs/mesa/Makefile @@ -64,7 +64,7 @@ define Package/mesa/Default SECTION:=libs CATEGORY:=Libraries SUBMENU:=Video - DEPENDS:=+((arm&&!arm_v7)||armeb||powerpc||mips||mipsel):libatomic + DEPENDS:=+libatomic TITLE:=Mesa3D URL:=https://www.mesa3d.org endef -- 2.30.2